Xceed .NET Libraries Documentation
Xceed.Compression.Formats Assembly / Xceed.Compression.Formats Namespace / PPMdCompressedStream Class / Decompress Method / Decompress(Byte[]) Method
An array of bytes to decompress. Cannot be null.


In This Topic
    Decompress(Byte[]) Method
    In This Topic
    Decompresses an array of PPMd formatted compressed bytes.
    Syntax
    'Declaration
     
    Public Overloads Shared Function Decompress( _
       ByVal buffer() As Byte _
    ) As Byte()
    'Usage
     
    Dim buffer() As Byte
    Dim value() As Byte
     
    value = PPMdCompressedStream.Decompress(buffer)
    public static byte[] Decompress( 
       byte[] buffer
    )

    Parameters

    buffer
    An array of bytes to decompress. Cannot be null.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also